home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Win2K Login Window C-A-D.xpl < prev    next >
Text File  |  2001-12-30  |  2KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Startup/Shutdown\Startup\Windows NT/2K/XP\31) Inside Login Window"
  5. "NAME"="Logon Window Requires C-A-D"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="000001"
  9. "TEXT 1"="User is required to press CTRL-ALT-DEL to logon"
  10. "DESCRIPTION 1"="The Login Window of Windows can either pop-up automatically or only when the "secure key combination" (CTRL + ALT + DEL) is pressed."
  11. "DESCRIPTION 2"="For secure system, this C-A-D key combination is highly recommended while to single-user system this option might be turned off."
  12. "DESCRIPTION 3"="Please note: If you use Windows XP and use the new logon window "Welcome to Windows", this option has no effect. In this case, you need to turn on the "Classic Logon Window" mode before a user is forced to press C-A-D to logon."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to Monique <monique.de.meester@pandora.be> for this tweak!"
  17.  
  18. sV="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DisableCAD" 'DW
  19.  
  20. Sub Plugin_Initialize 
  21.  'String
  22.  i=RegReadValue(sV)
  23.  
  24.  if IsEmpty(i) then
  25.     SetUIElement 1,true
  26.  else
  27.     if i=0 then
  28.        SetUIElement 1,true
  29.     end if
  30.  end if
  31.  
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  if GetUIElement(1)=true then
  36.     If RegValueExists(sV) then Call RegDeleteValue(sV)
  37.  else
  38.     Call RegWriteValue(sV,1,2)
  39.  end if
  40.  
  41.  
  42.  Call Restart()
  43. End Sub
  44.  
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.  
  49.  
  50.  
  51.